home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / Bonus / VCLZip / kpdemosd.exe / ZipUtil / InvPwd.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-01-22  |  541 b   |  40 lines

  1. unit InvPwd;
  2.  
  3. { $Log: }
  4.  
  5. interface
  6.  
  7. uses
  8. {$IFDEF WIN32}
  9.   Windows,
  10. {$ELSE}
  11.   WinTypes, WinProcs,
  12. {$ENDIF}
  13.   SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  14.   Buttons;
  15.  
  16. type
  17.   TInvalidPwdDlg = class(TForm)
  18.     Label1: TLabel;
  19.     PasswordEdit: TEdit;
  20.     OKBtn: TButton;
  21.     CancelBtn: TButton;
  22.     Filename: TLabel;
  23.     Label3: TLabel;
  24.   private
  25.     { Private declarations }
  26.   public
  27.     { Public declarations }
  28.   end;
  29.  
  30. var
  31.   InvalidPwdDlg: TInvalidPwdDlg;
  32.  
  33. implementation
  34.  
  35. {$R *.DFM}
  36.  
  37.  
  38. end.
  39.  
  40.